type runtime.gList
22 uses
runtime (current package)
chan.go#L376: var glist gList
mgc.go#L407: list gList
mgcmark.go#L297: sched.gFree.stack = gList{}
mgcscavenge.go#L451: var list gList
netpoll.go#L484: func netpollready(toRun *gList, pd *pollDesc, mode int32) {
netpoll_epoll.go#L98: func netpoll(delay int64) gList {
netpoll_epoll.go#L100: return gList{}
netpoll_epoll.go#L127: return gList{}
netpoll_epoll.go#L131: var toRun gList
proc.go#L3477: func injectglist(glist *gList) {
proc.go#L3502: *glist = gList{}
proc.go#L5648: var list gList
proc.go#L6512: func (q *gQueue) popList() gList {
proc.go#L6513: stack := gList{q.head}
proc.go#L6520: type gList struct {
proc.go#L6525: func (l *gList) empty() bool {
proc.go#L6530: func (l *gList) push(gp *g) {
proc.go#L6536: func (l *gList) pushAll(q gQueue) {
proc.go#L6544: func (l *gList) pop() *g {
runtime2.go#L660: gList
runtime2.go#L818: stack gList // Gs with stacks
runtime2.go#L819: noStack gList // Gs without stacks
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |